home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / LstToolBar.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  756 b   |  39 lines

  1. // LstToolBar.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Radiant.h"
  6. #include "LstToolBar.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CLstToolBar
  16.  
  17. CLstToolBar::CLstToolBar()
  18. {
  19. }
  20.  
  21. CLstToolBar::~CLstToolBar()
  22. {
  23. }
  24.  
  25.  
  26. BEGIN_MESSAGE_MAP(CLstToolBar, CToolBar)
  27.     //{{AFX_MSG_MAP(CLstToolBar)
  28.     ON_WM_PARENTNOTIFY()
  29.     //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CLstToolBar message handlers
  34.  
  35. void CLstToolBar::OnParentNotify(UINT message, LPARAM lParam) 
  36. {
  37.     CToolBar::OnParentNotify(message, lParam);
  38. }
  39.